home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
WV Adobe ImageReady 3.0 history.xpl
< prev
next >
Wrap
Text File
|
2002-04-06
|
1KB
|
39 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="1"
"COUNT"="1"
"UIPATH"="Program Options\Other Programs\Adobe\ImageReady 3.0\"
"NAME"="Recent files list size"
"VERSION"="1.00"
"OSVERSION"=""
"LANGUAGE"="VBScript"
"TEXT 1"="Value:"
"DESCRIPTION 1"="By default, Adobe ImageReady 3.0 displays the last 10 opened files."
"DESCRIPTION 2"="With this plug-in, you can change this value."
"DESCRIPTION 3"="Example : enter "30" [without quote] to have the list of the last 30 opened files."
"AUTHOR"="FORMATMAN"
"CONTACTURL"="http://formatland.free.fr/"
"COPYRIGHT"="Copyright ⌐ Formatman"
"COMMENT 1"="For more informations, go to http://www.xsetup.net"
"COMMENT 2"="Created by VORMELKER Werner"
"COMMENT 3"="http://formatland.free.fr/"
"COMMENT 4"="formatman@wanadoo.fr"
sP="HKCU\Software\Adobe\ImageReady 3.0\Preferences\RecentFiles\MaxCount\"
Sub Plugin_Initialize
i=RegReadValue(sP)
SetUIElement 1,i
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
i=GetUIElement(1)
Call RegWriteValue(sP,i,2)
Call Restart()
End Sub
Sub Plugin_Terminate
End Sub